cody - HTMLify profile

cody
4270 Files
632708 Views
Latest files of /cody/swapnilsparsh/30DaysOfJavaScript/168 - Word Guess
/* Variabes */
/* Mixin's */
body {
background: #2ed4d7;
font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
color: #fff;
height: 100%;
text-align: center;
/* Mixin's */
body {
background: #2ed4d7;
font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
color: #fff;
height: 100%;
text-align: center;
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>Word Guess Game</title>
<link rel="stylesheet" href="./style.css">
</head>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>Word Guess Game</title>
<link rel="stylesheet" href="./style.css">
</head>
window.onload = function () {
var alphabet = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h',
'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's',
't', 'u', 'v', 'w', 'x', 'y', 'z'];
var categories; // Array of topics
var chosenCategory; // Selected catagory
var alphabet = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h',
'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's',
't', 'u', 'v', 'w', 'x', 'y', 'z'];
var categories; // Array of topics
var chosenCategory; // Selected catagory